1 -- Run this script against your database to create the Travel table.
3 CREATE TABLE [dbo].[Travel](
4 [PartitionKey] [nvarchar](200) NOT NULL,
5 [RowKey] [uniqueidentifier] NOT NULL,
6 [Place] [nvarchar](200) NOT NULL,
7 [GeoLocation] [geography] NOT NULL,
8 [Time] [datetime] NOT NULL,
9 CONSTRAINT [PK_Travel] PRIMARY KEY CLUSTERED
11 [PartitionKey] ASC, [RowKey] ASC
13 CONSTRAINT [IX_Travel] UNIQUE NONCLUSTERED